Fix build error with correct format string
authorJeenu Viswambharan <[email protected]>
Tue, 15 May 2018 15:18:40 +0000 (16:18 +0100)
committerDimitris Papastamos <[email protected]>
Tue, 15 May 2018 16:05:36 +0000 (17:05 +0100)
Change-Id: I11c12b113c4975efd3ac7ac2e8b93e6771a7e7ff
Signed-off-by: Jeenu Viswambharan <[email protected]>
plat/common/aarch64/plat_common.c

index 5c240a8ea20d8ab5c4e11689aad065ef24c6c46d..409ae55a2ff8bab66a4932b4f6613bfef4400236 100644 (file)
@@ -124,6 +124,6 @@ void plat_ea_handler(unsigned int ea_reason, uint64_t syndrome, void *cookie,
 
        ERROR("Unhandled External Abort received on 0x%lx at EL3!\n",
                        read_mpidr_el1());
-       ERROR(" exception reason=%u syndrome=0x%lx\n", ea_reason, syndrome);
+       ERROR(" exception reason=%u syndrome=0x%llx\n", ea_reason, syndrome);
        panic();
 }